-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Updating crossgen to pass -nologo by default #2205
Updating crossgen to pass -nologo by default #2205
Conversation
FYI. @dotnet/cli-contrib |
Do you want this is 2.2.100 (master) or 2.1.400 (release/2.1.4xx)? |
@@ -166,7 +166,7 @@ Copyright (c) .NET Foundation. All rights reserved. | |||
<!-- Create profiling symbols if requested --> | |||
<MakeDir Directories="$(CrossgenProfilingSymbolsOutputDirectory)" | |||
Condition="'$(CreateProfilingSymbols)' == 'true' and Exists($(CrossgenOutputAssembly))" /> | |||
<Exec Command="$(CrossgenExe) -readytorun -platform_assemblies_paths $(CrossgenPlatformAssembliesPath) -$(CreateProfilingSymbolsOptionName) $(CrossgenProfilingSymbolsOutputDirectory) $(CrossgenOutputAssembly)" | |||
<Exec Command="$(CrossgenExe) -nologo -readytorun -platform_assemblies_paths $(CrossgenPlatformAssembliesPath) -$(CreateProfilingSymbolsOptionName) $(CrossgenProfilingSymbolsOutputDirectory) $(CrossgenOutputAssembly)" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you also want to pass -nologo
in on line 144?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes. Fixed.
Retargeted to release/2.1.4xx |
Does anyone know if there is already coreclr (right repo?) bug tracking making crossgen spew less noise (besides the logo)? If not I will file one. T Things like 'tail calls are not supported' and 'cannot resolve [hex]' over and over with zero information as to:
|
This resolves #1404